std::basic_stringbuf

From Cppreference

< cpp | io
Jump to: navigation, search

Defined in header <code><sstream></code>

template<

    class charT,
    class Traits = std::char_traits<CharT>,
    class Allocator = std::allocator<CharT>

> class basic_stringbuf;          //inherits basic_streambuf<charT, Traits, Allocator>​

Two specializations for common character types are also defined:

<code> typedef basic_stringbuf<char> stringbuf; typedef basic_stringbuf<wchar_t> wstringbuf;

/todo

[edit] Member types

^ Member type ^ Definition ^ | char_type | charT | | traits_type | Traits | | int_type | Traits::int_type | | pos_type | Traits::pos_type | | off_type | Traits::off_type | | allocator_type | Allocator (/C++0x feature) |

[edit] Member functions

/todo

[edit] See also

io/basic_streambuf, io/basic_filebuf

Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox
In other languages